home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / bgfax160.zip / BINK-USR.TXT < prev    next >
Text File  |  1996-04-18  |  4KB  |  104 lines

  1. --------------------------------------------------------------------------
  2. Setup hints: BGFAX, US Robotics, and Binkley 2.60 (DOS & OS/2)    04-18-96
  3. B.J. Guillot                                 http://www.blkbox.com/~bgfax/
  4. FidoNet 1:106/400                         InterNet: bjg90783@jetson.uh.edu
  5. --------------------------------------------------------------------------
  6.  
  7. YOU MUST BE USING BINKLEY 2.60...  DO NOT USE THE 2.59 BETAS OR EARLIER.
  8.  
  9. Here is a clip from the BINKLEY.CFG file...
  10.  
  11. ;******************************************************************
  12. ;*  Fax Related Section of Binkley.CFG for a Class 2.0            *
  13. ;*  US Robotics fax modem; NOT for ZOOM, SUPRA, HAYES, PPI, etc.  *
  14. ;******************************************************************
  15. PreInit    |v``^``ATZ|~AT+FCLASS=2\.0|~
  16. Init       AT+FAA=1;+FLI="713\ 555\ 1212";+FNR=1,1,1,1|
  17. PreDial    `
  18. Prefix     AT+FCLASS=0;DT
  19. Answer     ATA|
  20. DtrHigh
  21. ;MailNote                      ; must be COMMENTED OUT for BGFAX to work!!!
  22. ;FaxInDir   NOT_USED           ; must be COMMENTED OUT for BGFAX to work!!!
  23. ;FaxBaud    NOT_USED           ; useless when used with BGFAX
  24. ExtrnMail     123 +FCO
  25. Extern        spawn            ; this causes Bink to spawn EXTMAIL.BAT|CMD
  26. ModemFax      +FCO
  27. ModemIgnore   RINGING
  28. ModemIgnore   RING RESPONSE
  29. ModemRinging  RING
  30. ModemConnect  CONNECT
  31. ModemIgnore   RRING
  32. ModemRetry    BUSY
  33. ModemFailure  VOICE
  34. ModemFailure  ERROR
  35. ModemFailure  OK
  36. ModemFailure  NO CARRIER
  37. ModemIncoming NO DIAL
  38. ModemIgnore   DIALING
  39. ModemFailure  NO ANSWER
  40. ModemIgnore   DIAL TONE
  41.  
  42.  
  43. Miscellaneous notes about BINKLEY.CFG...
  44.  
  45.   1. The "123" number I choose in the "ExtrnMail" verb above is just a
  46.      dummy number.  Since we are spawning to EXTMAIL.CMD, the number
  47.      itself does not make any difference
  48.   2. The "\" character used in the PreInit and Init strings allow
  49.      Binkley to "escape" the following character, e.g., \. sends a
  50.      period.  If we did not put a "\.", Binkley would convert the
  51.      period to a comma, and we do not want that.
  52.   3. The dial Prefix "AT+FCLASS=0;DT" instead of just "ATDT" is to make
  53.      sure the modem is in data mode (+FCLASS=0) when making outgoing
  54.      calls.
  55.   4. Binkley will NOT report modem initialization errors and this makes
  56.      finding errors almost impossible.
  57.  
  58. It is NORMAL to see the ARQ/FAX light blink when Binkley is running when
  59. using this configuration.  If it does NOT blink, something is wrong.
  60.  
  61. The other important file we must create is EXTMAIL.BAT|CMD, which will
  62. reside in the Binkley directory.
  63.  
  64. EXTMAIL.CMD   (If you are using Binkley and BGFAX for OS/2)
  65. ~~~~~~~~~~~
  66. @c:\bgfax\bgfax2 /fco:4 c:\bgfax h%3 z
  67.  
  68. EXTMAIL.BAT   (If you are using Binkley and BGFAX for DOS)
  69. ~~~~~~~~~~~
  70. @c:\bgfax\bgfax /fco:4 c:\bgfax 1 z
  71.  
  72. Miscellaneous notes about EXTMAIL.BAT|CMD...
  73.  
  74.   1. This file contains just the one line.
  75.   2. The "h%3" just tells BGFAX to use the com port HANDLE as provided
  76.      by Binkley during the spawn.  OS/2 version.  Do not change.
  77.   3. The DOS version of BGFAX does not use com port handles, so you must
  78.      tell it which com port to use (thus, the "1" for COM1).
  79.   4. Since we are using a USR (Class 2.0) modem, we do not have to worry
  80.      about all that port lock-unlock garbage.  You should NOT need to use
  81.      the SU utility for anything.
  82.   5. You might have to make changes to the "/fco:4" parameter depending upon
  83.      how fast or slow your machine is.  The /fco:4 requires a pretty fast
  84.      machine (my 486dx4/100 seems to work okay with it).  On slower machines,
  85.      you might want to try a /fco:0 or /fco:2
  86.  
  87. If Binkley/2 is working correctly, your BINKLEY.LOG will show an entry
  88. like this...
  89.  
  90. + 18 Apr 00:05:22 BINK begin, BinkleyTerm-OS/2 Ver. 2.60 -IBMC/2
  91. # 18 Apr 00:05:31 BINK Ring
  92. # 18 Apr 00:05:38 BINK +Fco
  93. : 18 Apr 00:05:39 BINK Spawning external mailer
  94. : 18 Apr 00:06:00 BINK Returned from external mailer
  95. * 18 Apr 00:06:04 BINK Seconds: 31  Tariff: 0  Fee: 0  System: FAX
  96. : 18 Apr 00:06:04 BINK Exit after receiving mail with errorlevel 20
  97. + 18 Apr 00:06:04 BINK end, BinkleyTerm-OS/2 Ver. 2.60 -IBMC/2
  98.  
  99. Notice that after the fax is received, Binkley will go ahead and exit
  100. with the errorlevel defined by E2= in the BINKLEY.EVT file after BGFAX
  101. releases control back to Bink.  Again, this happens AFTER the BGFAX
  102. transfer has already happened.
  103.  
  104.